home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue45 / Clinic / Client3.dpr < prev    next >
Text File  |  2000-11-02  |  232b  |  15 lines

  1. program Client3;
  2.  
  3. uses
  4.   Forms,
  5.   ClientForm3U in 'ClientForm3U.pas' {Form1},
  6.   NoDUNBox in 'NoDUNBox.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.